home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / scripts / linear-algebra / cross.m < prev    next >
Text File  |  1996-11-20  |  1KB  |  45 lines

  1. ## Copyright (C) 1995, 1996  Kurt Hornik
  2. ## 
  3. ## This program is free software; you can redistribute it and/or modify
  4. ## it under the terms of the GNU General Public License as published by
  5. ## the Free Software Foundation; either version 2, or (at your option)
  6. ## any later version.
  7. ## 
  8. ## This program is distributed in the hope that it will be useful, but
  9. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. ## General Public License for more details. 
  12. ## 
  13. ## You should have received a copy of the GNU General Public License
  14. ## along with this file.  If not, write to the Free Software Foundation,
  15. ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16.  
  17. ## usage:  cross (x, y)
  18. ##
  19. ## Computes the vector cross product of the two 3-dimensional vectors
  20. ## x and y.
  21.  
  22. ## Author: KH <Kurt.Hornik@ci.tuwien.ac.at>
  23. ## Created: 15 October 1994
  24. ## Adapted-By: jwe
  25.  
  26. function z = cross (x, y)
  27.   
  28.   if (nargin != 2)
  29.     usage ("cross (x, y)");
  30.   endif
  31.  
  32.   if (! (is_vector (x) && length (x) == 3
  33.      && is_vector (y) && length (y) == 3))
  34.     error ("cross: both x and y must be 3-dimensional vectors");
  35.   endif
  36.   
  37.   x = reshape (x, 3, 1);
  38.   y = reshape (y, 3, 1);
  39.   e = eye (3, 3);
  40.   for k = 1 : 3
  41.     z(k) = det ([x y e(:, k)]);
  42.   endfor
  43.  
  44. endfunction
  45.